From 567c8339cad4650a2409db656a262defc5eb1a74 Mon Sep 17 00:00:00 2001 From: Eduardo Bautista Date: Mon, 25 Aug 2014 17:21:16 -0500 Subject: [PATCH] Use "0.0.1" instead of "0.1.0" for version numbers --- src/doc/source/guide.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/doc/source/guide.md b/src/doc/source/guide.md index 853c613b9..e13b751b5 100644 --- a/src/doc/source/guide.md +++ b/src/doc/source/guide.md @@ -87,7 +87,7 @@ We can also use `cargo run` to compile and then run it, all in one step:
$ cargo run
    Fresh hello-world v0.1.0 (file:///Users/wycats/src/hello_world)
+class="s1">   Fresh hello-world v0.0.1 (file:///Users/wycats/src/hello_world)
    Running `target/hello_world`
 Hello world!
@@ -123,7 +123,7 @@ To depend on a library, add it to your `Cargo.toml`. [package] name = "hello-world" -version = "0.1.0" +version = "0.0.1" authors = ["Yehuda Katz "] [dependencies.color] @@ -158,7 +158,7 @@ Compile it:
$ cargo run
    Compiling color v0.0.1 (https://github.com/bjz/color-rs.git#bf739419)
-   Compiling hello-world v0.1.0 (file:///Users/wycats/src/hello_world)
+   Compiling hello-world v0.0.1 (file:///Users/wycats/src/hello_world)
      Running `target/hello_world`
 Converting RGB to HSV!
 HSV: HSV { h: 0, s: 1, v: 1 }
@@ -308,7 +308,7 @@ patch. Here's what `conduit-static`'s `Cargo.toml` looks like: [package] name = "conduit-static" -version = "0.1.0" +version = "0.0.1" authors = ["Yehuda Katz "] [dependencies.conduit] -- 2.30.2